
/* --- Hero Section --- */
.services-hero {
    height: 45vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('../../assets/home\ page\ image/Hero section Image.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffd966;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* --- Intro Section --- */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
}

.services-intro h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 20px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    text-decoration: none;
    border: 1px solid #ff9800;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff9800;
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.1);
}

.card-img-box {
    height: 220px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #222;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    padding: 15px 20px;
    color: #ff9800;
    font-weight: bold;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- WORKFLOW SECTION (No Overlap Version) --- */
.nx-workflow-section {
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 20px;
    margin-top: 40px;
}

.nx-workflow-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #666;
}

.nx-workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.nx-workflow-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border-bottom: 4px solid #ff9800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    transition: 0.3s;
}

.nx-workflow-card:hover {
    background: #fffefb;
    transform: scale(1.02);
}

/* Step Indicator Badge */
.nx-step-indicator {
    background: #ff9800;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px; 
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.nx-workflow-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #222;
}

.nx-workflow-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-overlay h1 { font-size: 2.2rem; }
    .nx-workflow-section { padding: 40px 20px; }
}